home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Download subroutine for HOST.HST
- ;
- top4_:
- Writeln " "
- Writeln " "
- Write "Enter File Name to Download or [Q] to quit ? "
- Getr 7 12
- If "$7" = "Q" re_menu
- Exist $7 Ydownload_
- Writeln "File [$7] does not exist, try again."
- Goto top4_
-
- Ydownload_:
- Writeln " Available protocols: [X]modem [C]RC Xmodem [I]modem"
- Write " [Y]modem [G]-Ymodem [Q]uit : "
- Getr 6 1
- If "$6" = "X" do_it
- If "$6" = "C" do_it
- If "$6" = "I" do_it
- If "$6" = "Y" do_it
- If "$6" = "G" do_it
- If "$6" = "Q" re_menu
- Writeln " "
- Writeln " Enter one of the above protocols or [Q] to quit..."
- Goto Ydownload_
-
- do_it:
- Writeln " File [$7] "
- Writeln " Send ready. Press [CTRL-X] to abort..."
- Upld $7 $6
- Return
-
-
- Re_Menu:
- Return